%load_ext pretty_jupyter
import pandas as pd
This notebook serves as a demonstration, how to use themes. To apply the theme, we just need to specify "theme" attribute in the notebook's metadata. Check out this notebook's metadata to find it.
In this instance, we specified "theme": "slate" and got this nice dark theme.
d = pd.DataFrame({"a": [1, 2, 3, 4]})
| a | |
|---|---|
| 0 | 1 |
| 1 | 2 |
| 2 | 3 |
| 3 | 4 |
Some maths here: $a \cdot a = a^2$